home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 6584 / 6584.xpi / chrome / flashvideodownloader / content / adult_notification.xul < prev    next >
Extensible Markup Language  |  2009-09-29  |  1KB  |  34 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  3. <dialog title="Adult Warning Page"
  4.         xmlns:html="http://www.w3.org/1999/xhtml"
  5.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  6.         buttons="accept,cancel"
  7.         autosize="true"
  8.         resizable="no"
  9.         onload="FlashVDAdultWarning.init();"
  10.         ondialogaccept="FlashVDAdultWarning.on_accept();return true;"
  11.         ondialogcancel="window.close();return false;">
  12.  
  13. <script type="application/x-javascript" src="chrome://flashvideodownloader/content/adult_notification.js"/>
  14.  
  15. <groupbox flex="1">
  16.     <caption label="Warning! You Are About to Download an Adult Materials!" id="caption" />
  17.  
  18. <vbox flex="1">    
  19.  <hbox flex="1">
  20.     <textbox id="lic" multiline="true" rows="10" cols="70" readonly="true" />
  21.  </hbox>
  22.  <hbox>
  23.     <button label="Accept" dlgtype="accept"/>
  24.     <button label="Decline" dlgtype="cancel"/>
  25.     <checkbox label="I accept the terms. Disable Warnings." 
  26.               id="adult_notification"
  27.               style="font-weight:bold"
  28.               oncommand="FlashVDAdultWarning.set_adult_notification();"/>
  29.  </hbox>
  30. </vbox>
  31.  
  32. </groupbox>
  33.  
  34. </dialog>